/*common */
html{
	height: 100%;
	font-size: 16px;
	font-family: 'Gilroy', Arial, sans-serif;
	font-weight: 400;

	-webkit-text-size-adjust: none;
	touch-action: manipulation;
}
.page__header {
	flex: 0 0 auto;
}
.page__wrapper {
	flex: 1 0 auto;
}
.page__footer {
	flex: 0 0 auto;
}

.preloader{background:#fff url(/dist/img/ajax-loader.gif) center center no-repeat!important;z-index: 3;}
.spinner{background: url(/dist/img/spinner.gif) 0% 0% / contain;display: block;width: 25px;height: 25px;margin: 0px auto -1px;}

input, button {
	line-height: 45px;
	height: 45px;
	display: block;
	box-sizing: border-box;
	outline: none;
}
input:disabled {
	/*opacity: 0.6;*/
	/*color: #d5dadc !important;*/
	background-color: #d5dadc !important;
}
a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #F9C700;
	text-decoration: underline;
}
.decorate, .decorate:hover {
	text-decoration: underline;
}
.bolder-400 {
	font-weight: 400;
}
.bolder-700 {
	font-weight: 700;
}
.btn {
	margin-bottom: 0;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	font-size: 21px;
	line-height: 1.42857143;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	box-sizing: border-box;
}
.btn:focus, .btn:hover, .btn:visited {
	outline: none;
}
.btn.btn-pay, .btn-submit, .btn-success {
	line-height: 60px;
	font-size: 24px;
	
	width: 100%;
	height: 60px;
	
	padding: 0;
	margin: 0;
	border: 0;

	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-submit {
	background-color: #F9C700;
	color: #000000;
	border: 0px solid transparent;
	
	box-shadow: inset 0px 0px 0px 0px transparent;
	-moz-box-shadow: inset 0px 0px 0px 0px transparent;
	-webkit-box-shadow: inset 0px 0px 0px 0px transparent;

	transition: background ease-in-out .15s,color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.btn-submit:hover, .btn-submit.disabled {
	background: #212123;
	color: #fff;
}
.btn-submit.disabled {
	cursor: unset;
}

.btn.btn-pay, .btn.btn-pay--noregister, .btn.btn-success {
	color: #fff;
}
.btn.btn-pay, .btn-pay--noregister {
	background-color: #EB5E00;
}
.btn span {
	display: inline-block;
	height: 56px;
	width: 38px;
}
.btn.btn-pay:hover {
	background: #f9c702;
	color: #000;
}
.btn-pay--noregister:hover {
	/*background: #f9c702;*/
	/*color: #000;*/
}
.btn.btn-success {
	background-color: #27AE60;
	cursor: default;
}

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}



.form__checkout {
	position: relative;
}

.terms-of-service {
	display: block;
	margin: 0 0 10px 0;
	cursor: pointer;
	user-select: none;
	position: relative;
}
.terms-of-service input[type=checkbox] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.terms-of-service span {
	display: inline-block;
	position: relative;
	padding: 0 0 0 35px;
	line-height: 14px;
}
.terms-of-service span:before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	position: absolute;
	left: 0;
	top: 0;
	background: url('/dist/img/checkbox-3.png') 0 0 no-repeat;
}
 
/* Checked */
.terms-of-service input[type=checkbox] + span:after {
	content: "";	
	opacity: 0;
	transition: opacity 0.3s ease;
}
.terms-of-service input[type=checkbox]:checked + span:after {
	display: inline-block;
	width: 22px;
	height: 22px;
	position: absolute;
	left: 4px;
	top: -5px;
	background: url(/dist/img/checkbox-4.png) 0 0 no-repeat;
	opacity: 1;
}
 
/* Focus */
.focused span:before {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover */
.terms-of-service span:hover:after {
	filter: brightness(110%);
}
 
/* Active */
.terms-of-service span:active:before,
.terms-of-service span:active:after {
	filter: brightness(80%);
}
 
/* Disabled */
.terms-of-service input[type=checkbox]:disabled + span {
	color: #666;
	cursor: default;
}
.terms-of-service input[type=checkbox]:disabled + span:before,
.terms-of-service input[type=checkbox]:disabled + span:after {
	filter: grayscale(100%);
	opacity: 0.6;
}

/* landing */
.page {
	background-color: #202124;
	color: #fff;
	
	display: flex;
	flex-direction: column;

	min-height: 100vh;
}

.container {
	box-sizing: border-box;
	max-width: 1195px;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
}
.header__logo img {
	max-width: 150px;
	width: 100%;	
}
.header__contacts {
	text-align: right;
}
.header__login {
	/*background: #f3c30a;*/
	/*padding: 6px 3px;*/
	/*border-radius: 3px;*/
}
.header__login--animanion span {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	font-size: 0;
}
.header__login span:hover {
	cursor: pointer;
}
.header__login:not(.header__login--is_logined) span:hover {
	color: #F9C700;
}

.header__login--is_logined span:not(.menu__separate) {
	height: 32px;
	width: 32px;
	border: 1px solid #f9c702;
	border-radius: 50%;
	display: block;
	line-height: 32px;
	text-align: center;
	background: #f9c702;
	color: #000;
	font-weight: 600;
}


.contacts__phone {
	padding: 5px 0;
}

.all-classes {
	display: flex;
	align-items: center;

	margin-top: 10px;
	margin-bottom: 40px;
	font-size: 20px;
}
.all-classes__link {
	color: #0daeff;
}
.all-classes__link span {
	display: inline-block;
	width: 20px;
}

.landing-offer {
	padding: 30px 0 60px 0;
	padding-top: 0%;
}
.landing-offer__title, .landing-offer__subtitle {
	text-align: left;
}
.landing-offer__title {
	letter-spacing: -1px;
	font-size: 42px;
}
.landing-offer__subtitle {
	font-size: 21px;
	margin-top: 20px;
	line-height: 130%;

	font-weight: 100;

	width: 75%;
	opacity: 0.9;
}
.landing-offer_content {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;

}
.landing-offer__video {
	flex: 0 0 58%;

	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
	padding-bottom: 33.25%;
}
.landing-offer__video iframe, .landing-offer__video img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.landing-offer__form {
	flex: 0 0 40%;
}
.form, #result {
	position: relative;

	border: 1px solid #979797;
	background-color: #D4D4D4;
	padding: 20px;
	-webkit-box-shadow: 0 12px 94px -9px rgb(0 0 0 / 35%);
	-moz-box-shadow: 0 12px 94px -9px rgba(0,0,0,.35);
	box-shadow: 0 12px 94px -9px rgb(0 0 0 / 35%);
	border-radius: 4px;
}
.form__container {
	transition: opacity ease-in-out .3s;
}
.form.preloader .form__container {
	opacity: 0.6;
}
#result {
	display: none;
	color: #000;
}
.success__title {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: -1px;
}
.success__separate {
	margin-left: 5px;
}
.success__subtitle {
	font-size: 20px;
	margin-top: 10px;
}
.success__login {
	max-width: 400px;
	margin: 0 auto;
	margin-top: 40px;
}
.success__login+.success__login {
	margin-top: 20px;
}
.success__login + .success__subtitle {
	margin-top: 40px;
}
.btn.btn--login {
	background-color: #6166dc;
	color: #fff;
	text-decoration: none;
}
.btn.btn--reload {
	background-color: #1c8a0d;
	color: #fff;
	text-decoration: none;
}
.btn.btn--login:hover {
	background-color: #575ba6;
}
.btn.btn--reload:hover {
	background-color: #1a6410;
}
@media (max-width: 800px) {
	.btn.btn--login, .btn.btn--reload {
		font-size: 22px;
	}
}
@media (max-width: 375px) {
	.btn.btn--login, .btn.btn--reload {
		font-size: 20px;
	}
}

.btn.btn--login {
	width: 100%;
	font-size: 18px;
}
.btn.btn--telegram {
	background-color: #28A8E9;
	color: #fff;
    width: 100%;
    margin: 0 auto;
    text-decoration: none;
    font-size: 18px;
}
.btn.btn--telegram:hover {
	background-color: #1993d1;
}

@media (max-width: 800px) {
	.btn.btn--login, .btn.btn--telegram {
		font-size: 16px;
	}
}

@media (max-width: 375px) {
	.btn.btn--login, .btn.btn--telegram {
		font-size: 16px;
		width: 100%;
	}
}
.social-networks {
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-networks > div {
	margin: 0 5px;
}
.social-networks > div img {
	width: 55px;
	height: 55px;
}


.form__row {
	margin-bottom: 15px;
	width: 100%;
	display: block;
	position: relative;
}
.form__row input:not(.checkobox) {
	width: 100%;
	padding-left: 15px;
	
	font-size: 15px;
	line-height: 1.42857143;
	
	color: #000;
	background-color: #fff;
	background-image: none;
	
	border: 1px solid #979797;
	border-radius: 4px;

	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.form__row input:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
	box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.form__row label, .form__row label a {
	color: #000;
	font-weight: 400;
	font-size: 12px;
}
.form__row.has-error label, .form__row.has-error label a {
	color: red;
}
.form__row.has-error input {
	border-color: #d93025;
	border-width: 2px;
}

.user-registered .form__row--email:after {
	content: '';
	background-image: url(/dist/img/lock-icon.png);
	position: absolute;
	right: 10px;
	top: 15px;
	height: 15px;
	width: 15px;
	background-size: contain;
	background-repeat: no-repeat;
}

.video-description {
	margin-top: 70px;
}
.video-description h2 {
	font-size: 36px;
	margin-bottom: 20px;
}
.video-description h3 {
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 26px;
}
.video-description h3 + p {
	margin-top: 0;
}
.video-description__btn {
	margin-top: 2.3em;
}
.video-description__btn .btn {
	max-width: 400px;
}

.form--scale {
	-webkit-animation: scale 1.1s infinite linear;
	-moz-animation: scale 1.1s infinite linear;
	-ms-animation: scale 1.1s infinite linear;
	-o-animation: scale 1.1s infinite linear;
	animation: scale 1.1s infinite linear;
	animation-iteration-count: 2;
}

@-webkit-keyframes scale {
	from{
		-webkit-transform: scale(1);
	}
	25%{
		-webkit-transform: scale(1.005);
	}
	50%{
		-webkit-transform: scale(1.02);
	}
	75%{
		-webkit-transform: scale(1.005);
	}
	to {
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes scale {
	from{
		-moz-transform: scale(1);
	}
	25%{
		-moz-transform: scale(1.005);
	}
	50%{
		-moz-transform: scale(1.02);
	}
	75%{
		-moz-transform: scale(1.005);
	}
	to {
		-moz-transform: scale(1);
	}
}
@-ms-keyframes scale {
	from{
		-ms-transform: scale(1);
	}
	25%{
		-ms-transform: scale(1.005);
	}
	50%{
		-ms-transform: scale(1.02);
	}
	75%{
		-ms-transform: scale(1.005);
	}
	to {
		-ms-transform: scale(1);
	}
}
@-o-keyframes scale {
	from{
		-o-transform: scale(1);
	}
	25%{
		-o-transform: scale(1.005);
	}
	50%{
		-o-transform: scale(1.02);
	}
	75%{
		-o-transform: scale(1.005);
	}
	to {
		-o-transform: scale(1);
	}
}
@keyframes scale {
	from{
		transform: scale(1);
	}
	25%{
		transform: scale(1.005);
	}
	50%{
		transform: scale(1.02);
	}
	75%{
		transform: scale(1.005);
	}
	to {
		transform: scale(1);
	}
}

footer {
	background-color: #000;
}
.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;

	/*padding: 150px 0 50px 0;*/
	padding: 60px 0;
}
.terms {
	padding: 20px 0;
}
.administrators__title {
	font-size: 35px;
}
.administrator {
	margin-top: 18px;
}
.administrator__title, .administrator__email, .administrator__phone {
	font-size: 16px;
}
.administrator__title, .administrator__email, .administrator__phone {
	font-size: 21px;
}
.administrator__title {
	
}
.administrator__email {
	margin-top: 9px;
}
.administrator__phone {
	margin-top: 2px;
}
.footer__payment img {
	width: 130px;
}
.footer__lang-switcher a {
	font-size: 25px;
	line-height: 2.266667;
}
.footer__lang-switcher a:first-child {
	padding-right: 15px;
}
.footer__lang-switcher a.is__active {
	text-decoration: underline;
	color: #F9C700;
}

.legal-informations {
	padding-bottom: 50px;
}
.legal-informations__title {
	font-size: 21px;
}
.legal-informations ul {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 9px;
}
.legal-informations ul li {
	margin-top: 2px;
}
.legal-informations ul li:first-child {
	margin-top: 0;
}

/*page 404*/
.body-error h1 {
	text-align: center;
}
.error404-item {

}

@media (max-width: 1200px) {
	.container {
		max-width: 900px;
	}
	.landing-offer__video, .landing-offer__form {
		flex: 0 0 49%;
	}
	.footer {
		padding: 100px 0 45px 0;
	}
	.administrator__title, .administrator__email, .administrator__phone {
		font-size: 16px;
	}
	.footer__lang-switcher a {
		font-size: 20px;
	}
}
@media (max-width: 800px) {
	.main-content {
		display: block;
	}
	.container {
		max-width: 100%;
	}
	.header {
		padding: 15px 0;
	}
	.header__logo img {
		max-width: 140px;
	}
	.contacts__email a, .contacts__phone a {
		font-size: 0.8em;
	}
	.all-classes {
		margin-top: 25px;
		margin-bottom: -6px;
	}
	.landing-offer {
		padding: 0;
		padding-top: 20px;
		padding-bottom: 40px;
	}
	.landing-offer__title, .success__title {
		font-size: 28px;
	}
	.landing-offer__title {
		line-height: 100%;
	}
	.landing-offer__subtitle {
		font-size: 16px;
		margin-top: 10px;
		width: 100%;
	}
	.landing-offer_content {
		flex-direction: column;
		margin-top: 20px;
	}
	.landing-offer__video, .landing-offer__form {
		flex: 1 0 100%;
	}
	.landing-offer__video {
		padding-bottom: 55.25%;
	}
	.landing-offer__form {
		margin-top: 15px;
	}
	.user-registered .landing-offer_content {
		flex-direction: column-reverse;
	}
	.user-registered .landing-offer__form {
		margin-top: 0;
		margin-bottom: 20px;
	}

	.footer {
		flex-direction: column;
	}
	.administrators__title, .administrator__title, .administrator__email, .administrator__phone {
		font-size: 21px;
		text-align: center;
	}
	.footer__payment {
		margin-top: 50px;
	}
	.footer__payment img {
		width: 150px;
	}
	.footer__lang-switcher {
	}
	.footer__lang-switcher a {
		font-size: 24px;
	}
	.legal-informations {
		text-align: center;
	}

	.terms {
		text-align: center;
		padding-top: 20px;
		padding-bottom: 90px;
	}
	.btn {
		font-size: 16px;
	}

	.success__subtitle {
		font-size: 16px;
	}

	.btn-submit {
		width: calc(100% - 30px);
		margin: 0 auto;
	}
}
@media (max-width: 767px) {
	.administrator__title, .administrator__email, .administrator__phone {
		font-size: 16px;
	}
	.footer__payment {
		margin-top: 40px;
	}
	.footer__payment img {
		width: 100px;
	}
	.footer__lang-switcher {
		margin-top: 20px;
	}
	.footer__lang-switcher a {
		font-size: 14px;
	}
}
@media (max-width: 500px) {
	.video-description {
		margin-top: 40px;
	}
	.video-description h3 {
		margin-top: 30px;
	}
	.video-description li {
		margin-bottom: 10px;
		line-height: 1.2;
	}
	.video-description__btn {
		margin-top: 20px;
	}
}
@media (max-width: 375px) {
	.btn.btn-pay {
		font-size: 18px;
	}
	.about__pay--liqpay .btn.btn-pay {
		font-size: 20px;
	}

	.btn.btn-pay span {
		margin-left: 4px;
	}
	.btn-submit {
		font-size: 14px;
		width: 100%;
	}
	.btn span {
		width: 18px;
	}
	.terms {
		font-size: 13px
	}

}
@media (max-width: 340px) {
	.about__pay--liqpay .btn.btn-pay {
		font-size: 18px;
	}

}

.header__login--animanion {
	font-size: 30px;
	line-height: 30px;
	color: #000;
}
.header__login--animanion, .header__login--animanion::before, .header__login--animanion::after {
	width: 55px;
	height: 30px;
}
.header__login--animanion::before, .header__login--animanion::after {
	font-size: 18px;
}
.header__login--animanion {
position: relative;
	display: block;
	margin: 0;
	
	background-color: #6166dc;
	color: #fff;
	border-radius: 4px;
	box-shadow: 0 0 0 0em rgb(52 152 219 / 0%), 0em 0.05em 0.1em rgb(0 0 0 / 20%);
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}

.header__login--animanion::before,
.header__login--animanion::after {
	position: absolute;
	content: "";
}

.header__login--animanion::before {
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 5%;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) scale(0);
	transform: translate3d(0, 0, 0) scale(0);
}

.header__login--animanion::after {
	content: "Вход";
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	text-align: center;
}

.header__login--animanion.is-animating {
	-webkit-animation: phone-outer 3000ms infinite;
	animation: phone-outer 3000ms infinite;
}
.header__login--animanion.is-animating::before {
	-webkit-animation: phone-inner 3000ms infinite;
	animation: phone-inner 3000ms infinite;
}
.header__login--animanion.is-animating::after {
	-webkit-animation: phone-icon 3000ms infinite;
	animation: phone-icon 3000ms infinite;
}

@-webkit-keyframes phone-outer {
	0% {
	  -webkit-transform: translate3d(0, 0, 0) scale(1);
			  transform: translate3d(0, 0, 0) scale(1);
	  box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
	}
	33.3333% {
	  -webkit-transform: translate3d(0, 0, 0) scale(1.1);
			  transform: translate3d(0, 0, 0) scale(1.1);
	  box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
	}
	66.6666% {
	  -webkit-transform: translate3d(0, 0, 0) scale(1);
			  transform: translate3d(0, 0, 0) scale(1);
	  box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
	}
	100% {
	  -webkit-transform: translate3d(0, 0, 0) scale(1);
			  transform: translate3d(0, 0, 0) scale(1);
	  box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
	}
}

@keyframes phone-outer {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		transform: translate3d(0, 0, 0) scale(1);
		box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
	}
	33.3333% {
		-webkit-transform: translate3d(0, 0, 0) scale(1.1);
		transform: translate3d(0, 0, 0) scale(1.1);
		box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5);
	}
	66.6666% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		transform: translate3d(0, 0, 0) scale(1);
		box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		transform: translate3d(0, 0, 0) scale(1);
		box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
	}
}
@-webkit-keyframes phone-inner {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0) scale(0);
		transform: translate3d(0, 0, 0) scale(0);
	}
	33.3333% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0) scale(0.9);
		transform: translate3d(0, 0, 0) scale(0.9);
	}
	66.6666% {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0) scale(0);
		transform: translate3d(0, 0, 0) scale(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0) scale(0);
		transform: translate3d(0, 0, 0) scale(0);
	}
}
@keyframes phone-inner {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0) scale(0);
		transform: translate3d(0, 0, 0) scale(0);
	}
	33.3333% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0) scale(0.9);
		transform: translate3d(0, 0, 0) scale(0.9);
	}
	66.6666% {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0) scale(0);
		transform: translate3d(0, 0, 0) scale(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0) scale(0);
		transform: translate3d(0, 0, 0) scale(0);
	}
}
@-webkit-keyframes phone-icon {
	0% {
	  -webkit-transform: translate3d(0em, 0, 0);
			  transform: translate3d(0em, 0, 0);
	}
	2% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	4% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	6% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	8% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	10% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	12% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	14% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	16% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	18% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	20% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	22% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	24% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	26% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	28% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	30% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	32% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	34% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	36% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	38% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	40% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	42% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	44% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	46% {
	  -webkit-transform: translate3d(0em, 0, 0);
			  transform: translate3d(0em, 0, 0);
	}
}
@keyframes phone-icon {
	0% {
	  -webkit-transform: translate3d(0em, 0, 0);
			  transform: translate3d(0em, 0, 0);
	}
	2% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	4% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	6% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	8% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	10% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	12% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	14% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	16% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	18% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	20% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	22% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	24% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	26% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	28% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	30% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	32% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	34% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	36% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	38% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	40% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	42% {
	  -webkit-transform: translate3d(0.01em, 0, 0);
			  transform: translate3d(0.01em, 0, 0);
	}
	44% {
	  -webkit-transform: translate3d(-0.01em, 0, 0);
			  transform: translate3d(-0.01em, 0, 0);
	}
	46% {
	  -webkit-transform: translate3d(0em, 0, 0);
			  transform: translate3d(0em, 0, 0);
	}
}